Formatting of the text

Hi,
I wanted to make a particular string value as Bold. Is this possible??

When I tried to access the object text, is it possible to access this as a rich text value??
Lion29 - Fri Sep 03 14:53:23 EDT 2010

Re: Formatting of the text
Mathias Mamsch - Mon Sep 06 09:42:31 EDT 2010

You can set attribute values to richtext values by doing:
 

(current Object)."Object Text" = richText "\b I am a bold string ..."

 


You can access the richText of an attribute the same way:

 

 

string s = richText (current Object)."Object Text"



Regards, Mathias



 

 

 


Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS

 

 

Re: Formatting of the text
Lion29 - Mon Sep 06 15:05:55 EDT 2010

Mathias Mamsch - Mon Sep 06 09:42:31 EDT 2010

You can set attribute values to richtext values by doing:
 

(current Object)."Object Text" = richText "\b I am a bold string ..."

 


You can access the richText of an attribute the same way:

 

 

string s = richText (current Object)."Object Text"



Regards, Mathias



 

 

 


Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS

 

 

Thanks a lot Mathias